home *** CD-ROM | disk | FTP | other *** search
- Path: noc.netcom.net!news
- From: Tarang Deshpande <tarang@willows.com>
- Newsgroups: comp.lang.c
- Subject: Re: beginner question
- Date: Thu, 28 Mar 1996 13:04:18 -0800
- Organization: NETCOM Network Operations
- Message-ID: <315AFED2.7466@willows.com>
- References: <4jc3sr$1ggu@uvaix3e1.comp.UVic.CA> <4jdo7l$de2@sparcserver.lrz-muenchen.de>
- NNTP-Posting-Host: daffy.willows.com
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 2.0GoldB2 (Win95; I)
-
- Kurt Watzka wrote:
- >
- > struct FOO
- > {
- > int bar;
- > }
- >
- > FOO is the "struct tag" of that struct, i.e. you can use it to declare
- > variables of that type as in
- >
- > struct FOO s;
- >
-
- So then what does the following mean:
-
- struct _FOO
- {
- int bar;
- } FOO;
-
- struct _FOO s1;
- FOO s2;
-
-
- Why?
-